From: Wei Liu Date: Mon, 20 Aug 2018 08:38:18 +0000 (+0100) Subject: tools/tests: fix an xs-test.c issue X-Git-Tag: archive/raspbian/4.11.1-1+rpi1^2~53^2~26 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=33664f9a05401fac8f2c0be0bb7ee8a1851e4dcf;p=xen.git tools/tests: fix an xs-test.c issue The ret variable can be used uninitialised when iters is 0. Initialise ret at the beginning to fix this issue. Reported-by: Steven Haigh Signed-off-by: Wei Liu Acked-by: Ian Jackson (cherry picked from commit 3a2b8525b883baa87fe89b3da58f5c09fa599b99) --- diff --git a/tools/tests/xenstore/xs-test.c b/tools/tests/xenstore/xs-test.c index eb5fe55722..6f902dd601 100644 --- a/tools/tests/xenstore/xs-test.c +++ b/tools/tests/xenstore/xs-test.c @@ -65,7 +65,7 @@ static int call_test(struct test *tst, int iters, bool no_clock) char *stage = "?"; struct timespec tp1, tp2; uint64_t nsec, nsec_min, nsec_max, nsec_sum; - int i, ret; + int i, ret = 0; nsec_min = -1; nsec_max = 0;